home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Simple Shares.xpl < prev    next >
Text File  |  2002-10-29  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\Advanced System Settings"
  5. "UIPATH 2"="Network\Security\Shares"
  6. "NAME"="Windows XP Simple Shares"
  7. "VERSION"="1.01"
  8. "OSVERSION"="0000011"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Use "Simple Shares" with no advanced options"
  11. "DESCRIPTION 1"="By default, Windows XP uses a new system for shares: Simple Mode."
  12. "DESCRIPTION 2"="In this modes, every share you create can been seen by everyone but nobody can make changes to the files inside these shares. Plus, you even can't change this by using ACLs (Access Control Lists) with the "Security" tab inside Explorer."
  13. "DESCRIPTION 3"="If this option is deactivated, you can use ACLs on any file, just like it used to be in Windows 2000."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=""
  18.  
  19.  
  20. sV1="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\forceguest" '1= default, 0 = ACLs
  21.  
  22. Sub Plugin_Initialize 
  23.     i=RegReadValue(sV1)
  24.     if i=1 then
  25.        SetUIElement 1,true 
  26.     end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  b=GetUIElement(1)
  34.  if b=true then
  35.     Call RegWriteValue(sPAth & sV1,1,2)
  36.  else
  37.     Call RegWriteValue(sPAth & sV1,0,2)
  38.  end if
  39.  
  40.  Call Restart()
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.